home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / util / libs / muitoolkit_src.lha / muitoolkit_src / mt_includes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-31  |  922 b   |  48 lines

  1.  
  2. /*
  3. $Id: mt_includes.h,v 1.2 1999/08/30 19:28:03 carlos Exp $.
  4. */
  5.  
  6. #define __USE_SYSBASE        // perhaps only recognized by SAS/C
  7.  
  8. #include <exec/types.h>
  9. #include <exec/memory.h>
  10. #include <exec/libraries.h>
  11. #include <exec/execbase.h>
  12. #include <exec/resident.h>
  13. #include <exec/initializers.h>
  14.  
  15. #include <stdio.h>
  16. #include <string.h>
  17.  
  18. #include <proto/exec.h>
  19. #include <proto/intuition.h>
  20. #include <proto/utility.h>
  21. #include <proto/dos.h>
  22. //#include <proto/locale.h>
  23. #include <intuition/intuition.h>
  24. #include <libraries/mui.h>
  25. #include <mui/mui.h>
  26. #include <mui/muiundoc.h>
  27. #include <proto/muimaster.h>
  28.  
  29.  
  30. #include <libraries/muitoolkit.h>
  31. #include <libraries/muitoolkitbase.h>
  32.  
  33.  
  34. #ifndef COMPILER_H
  35. #define COMPILER_H
  36.  
  37. #define REG(r)     register __ ## r
  38. #define SAVEDS     __saveds
  39. #define ASM        __asm
  40. #define REGARGS    __regargs
  41. #define STDARGS    __stdargs
  42. #define ALIGNED    __aligned
  43.  
  44. #endif /* COMPILER_H */
  45.  
  46.  
  47.  
  48.